error: '>>' should be '> >' within a nested template argument list|
错误现场: vector<pair<ll, int>> v; 在“<<”中加一个空格即可: vector<pair<ll, int> > ...
错误现场: vector<pair<ll, int>> v; 在“<<”中加一个空格即可: vector<pair<ll, int> > ...
string filename = "1.txt"; ifstream fin; fin.open(filename); 上述语句会产生如下错误: error: no m ...
没有添加头文件<string>,cout不能直接输出string类的变量。 ...